home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue57
/
DataAwar
/
Listing1.pas
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-04-04
|
200 b
|
10 lines
TPet = (Dog, Cat, Rabbit, Mouse, Gerbil, Budgie, à);
TPets = set of TPet;
type
TPerson = class
private
FPets: TPets;
public
property Pets: TPets read FPets write FPets;
end;